home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-03-22 | 2.4 KB | 23 lines | [TEXT/????] |
- /* Copyright 1994 Ralph Gonzalez */
-
- /*
- * FILE: trans.h
- * AUTHOR: R. Gonzalez
- * CREATED: March 15, 1994
- *
- * Defines 3D transformation (using trans. matrix) for mgraph
- * application, and other coordinate operations.
- */
-
- # include "boolean.h"
-
- /******************************************************************
- * 2D coordinate
- ******************************************************************/
- typedef struct Coord2
- {
- double x,
- y;
- } Coord2;
-
- /***************************************************************